home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / doors_1 / camf130.zip / FCAM-MAI.DOC next >
Text File  |  1993-01-15  |  3KB  |  80 lines

  1.      This is the FOSSIL version of the Cam-Mail Door.  This program will
  2. *ONLY* work with you are using the /M version of PCBoard.  If you aren't,
  3. the program will ABORT and will not run.
  4.  
  5.      If you've followed the DOCS that Clark Development, Inc. included, you
  6. will have noticed that they suggest that you use the SET FOSSIL=F environment .
  7. All of this documentation relies that you are using this environment as it will
  8. make things very easy to setup.
  9.  
  10.   Step #1:
  11.  
  12.     You will need to modify your MAIL Batch file.  Change it to look something
  13.     like this:
  14.  
  15.        CD \CAM-MAIL
  16.        %FOSSIL%CAM-MAIL %PCBDRIVE%%PCBDIR% NO /NOWINDOW
  17.        %PCBDRIVE%
  18.        CD %PCBDIR%
  19.        BOARD.BAT
  20.  
  21.      You will notice that the EXE FOSSIL name is FCAM-MAI.EXE.  This is where
  22.      the SET FOSSIL=F environment comes into play.  This way the door will
  23.      load properly (otherwise, it won't run or you'll run into problems).
  24.  
  25.   Step #2:
  26.  
  27.      You will also need to MODIFY your CAMSZ.BAT and CAMRZ.BAT.  I've tested
  28.      the external protocol and everything works.  However, the problem is
  29.      trying to get ahold of a ZMODEM.EXE that actually works properly <g>.
  30.      The documentation that Clark Development specifies for their PCB?Z.BAT
  31.      files will work just fine for Cam-Mail as well.  You just need to rename
  32.      them to CAMSZ.BAT and CAMRZ.BAT and place them in the CAM-MAIL directory.
  33.  
  34.      Here's an example of the CAMSZ.BAT:
  35.  
  36.        echo off
  37.        if %FOSSIL%==F goto FOSSIL
  38.        dsz handshake both pB4096 estimate 0 %5 z sz %3
  39.        goto done
  40.  
  41.        :FOSSIL
  42.        szmodem port %1 speed %2 sz %3 /FOSSIL /DELAYTIME 0 /NORBL /NOSBL
  43.        :done
  44.  
  45.      Here's an example of the CAMRZ.BAT:
  46.  
  47.        echo off
  48.        if %FOSSIL%==F goto FOSSIL
  49.        dsz handshake both estimate 0 %5 pB4096 pd0 z pr1 rz -p %3
  50.        goto done
  51.  
  52.        :FOSSIL
  53.        szmodem port %1 speed %2 rz %3 /FOSSIL /DELAYTIME 0 /NORBL /NOSBL /FL
  54.        :done
  55.  
  56.      Both of these BATCH files have been included.  At the time of this
  57.      writing, PCBoard's Zmodem is in BETA testing.  According to messages
  58.      that I've seen posted by CDC employee's, their version of Zmodem wil
  59.      work properly in the FOSSIL mode.  The testing that I did with their
  60.      Zmodem required the PCBOARD.DAT to be in the current directory.  What
  61.      you will need to do (if you plan on using theirs) is to change to the
  62.      PCBoard NODE directory and then run the program.  You could modify your
  63.      CAMSZ.BAT/CAMRZ.BAT to look like this:
  64.  
  65.        echo off
  66.        if %FOSSIL%==F goto FOSSIL
  67.        dsz handshake both pB4096 estimate 0 %5 z sz %3
  68.        goto done
  69.  
  70.        :FOSSIL
  71.        %PCBDRIVE%
  72.        CD %PCBDIR%
  73.        zmsend port %1 speed %2 sz %3 /FOSSIL /DELAYTIME 0 /NORBL /NOSBL
  74.        CD \CAM-MAIL
  75.        :done
  76.  
  77.  
  78.   That's about it.  Those are the only two modifications that are required.
  79. Enjoy and have fun!
  80.